home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / internet / net commander 1.0 / ISP / SCRPTLST / BDT.CMD < prev    next >
Encoding:
Text File  |  1996-02-15  |  825 b   |  44 lines

  1. #        Login.cmd for Beckmeyer Development "BDT"
  2. #
  3. # initialize modem
  4. #
  5. # The actual string you send your modem may vary.
  6. # Each modem is different so no string is included here.
  7. # In general, configure the modem for the fastest possible
  8. # COM port speed, with hardware flow control and carrier
  9. # detection.
  10. #
  11. output at\13
  12. input 10 OK\n
  13. #
  14. # send phone number
  15. #
  16. output atdt5305086\13
  17. #
  18. # now we are connected.
  19. #
  20. input 30 CONNECT
  21. #
  22. #  wait till it's safe to send because some modem's hang up
  23. #  if you transmit during the connection phase
  24. #
  25. wait 30 dcd
  26. #
  27. # now prod the terminal server
  28. #
  29. output \13
  30. #
  31. #  wait for the login prompt
  32. #
  33. input 30 ogin:
  34. output <Place Router Login Here>\13
  35. #
  36. # and the password
  37. #
  38. input 30 word:
  39. output <Place Router Password Here>\13
  40. #
  41. # now we are finished.
  42. #
  43.  
  44.